home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / FUNC / ISAMC.ARC / ISAMC.LBR / ISAM.C next >
Encoding:
Text File  |  1984-11-28  |  512 b   |  25 lines

  1. /*
  2. **                 ISAMC - Written by John M. Dashner
  3. */
  4.  
  5. /*
  6. **                  Global Data Module
  7. */
  8.  
  9. int isam_err;       /* error returns from isam routines */
  10.  
  11. char *isam_msg[] =  /* error messages for each defined error */
  12. {
  13.     "No Error",
  14.     "Record Not Found",
  15.     "Exceeded File Boundary",
  16.     "Not Defined",
  17.     "Key Length Invalid",
  18.     "Not Defined",
  19.     "Not Defined",
  20.     "Created New Index",
  21.     "I/O Error",
  22.     "Insufficient Storage for Control Blocks"
  23. };
  24.  
  25.